home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / shapeshifter / hardfile / internet.ss / Anarchie Pro 3.0 / Scripting / AppleScripts / Misc Stuff < prev    next >
Text File  |  1998-09-06  |  583b  |  17 lines

  1. tell application "Anarchie Pro"
  2.     set base to "ftp://user:password@host/"
  3.     mkdir url base & "testdir"
  4.     mkdir url base & "inside"
  5.     rename url base & "inside" newname "testdir/nowinside"
  6.     remove url base & "testdir/nowinside"
  7.     remove url base & "testdir"
  8.     sendcommand url base & "help"
  9.     
  10.     weblist url "http://host/path/"
  11.     webfetch url "http://host/path/file"
  12.     webview url "http://host/path/file"
  13.     webviewsource url "http://host/path/file"
  14.     
  15.     mirrorupload file "harddisk:folder" url "ftp://username:password@host/path/"
  16.     getwebsite file "harddisk:folder" url "http://host/path/"
  17. end tell